@charset "UTF-8";


.container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 3;
}

.container_fixed {
  width: 100%;
}

@media (max-width: 1300px) {
  .container {
    padding: 0 20px;
  }
}

.on-scroll {
  scroll-margin-top: 100px;
}

.section-title {
  font-size: 35px;
  color: rgb(43, 43, 43);
}

@media (max-width: 992px) {
  .section-title {
    font-size: 25px;
  }
}

.section-text {
  color: rgb(66, 66, 66);
  font-size: 20px;

  font-family: "Forum", serif;
  font-weight: 500;
  font-style: normal;

}

@media (max-width: 992px) {
  .section-text {
    font-size: 15px;
  }
}

.white-t {
  color: #fff !important;
}

/* .btn {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: rgb(11, 253, 80);
  --btn-bg-2: rgb(13, 172, 55);
  --btn-bg-color: hsla(360 100% 100% / 1);
  padding: 0.9em 1.4em;
  min-width: 150px;
  min-height: 54px;
  width: 350px;
  height: 60px;

  color: $text-color;
  font-weight: 700;
  font-size: 20px;
  transition: 0.8s;
  text-decoration: none;
  border-radius: 29px;
  box-shadow: 0 26px 41px -7px rgba(0, 234, 65, 0.3);
  background: $main-color;
}

.btn-donate:hover {
  background-position: right top;
}

.btn-donate:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
} */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  position: relative;
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 108%;
  z-index: 40;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 30px;
  gap: 20px;
  transition: 0.3s ease;
  border-radius: 0 0 20px 20px;
  transform: translateX(-50%);
  background-color: rgb(246, 246, 246);
  box-shadow: 4px 4px 15px 0px rgba(18, 31, 41, 0.36);
  height: 0;
  z-index: 5;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 992px) {
  .header {
    height: 60px;
    overflow: visible;
  }
}

/* Логотип и телефоны в одном ряду */
.header__left {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Расстояние между логотипом и телефонами */
}

/* Логотип */
.header__logo img {
  width: 120px;
}

/* Телефоны рядом с логотипом */
.header__tels {
  display: flex;
  flex-direction: column;
}

.header__tel {
  color: black;
  font-size: 23px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.header__inner .header__tel {
  color: black;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

/* Бургер-меню */
.header__burger {
  display: none;
}

.header__burger svg {
  width: 30px;
  height: 30px;
}

@media (max-width:660px) {
  .header__burger {
    display: flex;
  }

  .header__tel {

    font-size: 15px;
  }

  .contact__inner .header__tel {

    font-size: 20px;
  }
}

/* Адаптив для мобильных */
@media (max-width: 992px) {
  .header {
    padding: 10px;
  }

  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header__logo img {
    width: 100px;
    /* Уменьшаем логотип на мобилках */
  }



  .header__tels {
    margin-top: 0px;
    gap: 10px;
    /* Отступ между номерами */
  }



  .header__nav {
    display: none;
    /* Прячем меню */
  }
}

.header__inner.active {
  display: flex;
  position: absolute;
  background-color: rgb(246, 246, 246);
  width: 120%;
  top: 30px;
  left: -30px;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
}


.header__inner .header__nav {
  width: 60%;
  display: flex;
  list-style-type: none;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0;
}

@media (max-width: 600px) {
  .header__inner.active .header__nav {
    width: 60%;
    display: flex;
    list-style-type: none;
    flex-direction: column;
    justify-content: center;

    align-items: center;
    padding: 0;
  }

  .header__inner .header__nav {

    display: none;

  }
}

@media (max-width: 1200px) {
  .header__nav {
    gap: 20px;
  }
}


.header__nav li a {
  text-decoration: none;
  color: rgb(140, 140, 140);
  font-size: 18px;
  transition: 0.3s ease;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .header__nav {
    flex-direction: column;
  }

  .header__nav li a {
    text-decoration: none;
    color: rgb(140, 140, 140);
    font-size: 15px;
    transition: 0.3s ease;
    font-weight: 400;
    text-transform: uppercase;
  }

}

.header__nav li a:hover {
  color: black;
}

.video {
  background-color: rgb(247, 247, 247);
  /* .portfolio__btn-prev, .portfolio__btn-next {
    background: rgb(140, 140, 140);
  } */
}

.video__inner {
  width: 100%;
  padding: 40px;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 3;
  flex-direction: column;
  border-radius: 50px;
}

.first-screen {
  position: relative;
}

.first-screen__bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.first-screen__bg-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.first-screen__inner {
  height: 100vh;
  display: flex;
  padding-top: 0px;
  flex-direction: column;
}

.first-screen__header {
  height: 70px;
  border-radius: 70px;
  background-color: rgba(255, 255, 255, 0.884);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px;
  display: grid;
  grid-template-columns: 0.8fr 2fr 1fr;
  grid-template-rows: 100%;
  gap: 10px;
  position: relative;
  animation: animate__header 1s ease-out forwards;
  color: #000;
}

.first-screen__header li,
.first-screen__header a {
  color: #000;
}

.first-screen__header li:hover,
.first-screen__header a:hover {
  color: #000;
}

@keyframes animate__header {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }

  to {
    transform: translateY(50px);
    opacity: 1;
  }
}

.first-screen__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 20px;
}

.first-screen__main-text {
  flex-grow: 1;
  display: flex;
  gap: 40px;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;

}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.first-screen__main-text p {
  color: #dacdbd;
  font-size: 45px;
  margin-top: 40px;
}

.first-screen__main-text h1 {
  margin-top: 0px;
}

@media (max-width: 992px) {
  .first-screen__main-text p {
    font-size: 25px;
  }


}

@media (max-width: 502px) {
  .first-screen__main-text p {
    font-size: 18px;
  }
}

.first-screen__main-text h1 {
  font-size: 60px;
  text-transform: uppercase;
}

.first-screen__main-text h1 span {
  font-size: 0.7em;
}

@media (max-width: 992px) {
  .first-screen__main-text h1 {
    font-size: 50px;
  }
}

@media (max-width: 600px) {
  .first-screen__main-text h1 {
    font-size: 30px;
  }

  .first-screen__main-text h1 {
    margin-top: 0px;
  }

  .first-screen__main-text p {
    color: rgb(201, 201, 201);
    font-size: 35px;
    margin-top: 40px;
  }

}

@media (max-width: 450px) {
  .first-screen__main-text h1 {
    font-size: 25px;
  }
}

.first-screen__main-text h5 {

  color: #dacdbd;
  font-size: 35px;

}

@media (max-width: 992px) {
  .first-screen__main-text h5 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .first-screen__main-text h5 {
    font-size: 16px;
  }
}

.first-screen__btn {
  margin-top: 20px;
  width: 600px;
  height: 70px;
  align-content: center;

}

@media (max-width: 650px) {
  .first-screen__btn {
    width: 100%;
    font-size: 18px;
  }
}

.first-screen__list {
  list-style-type: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1300px) {
  .first-screen__list {
    display: none;
  }
}

.first-screen__list li {
  color: white;
  font-size: 25px;
  text-transform: uppercase;
  text-align: end;
}

.first-screen__list li.active {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgb(13, 172, 55);
  background-color: rgba(13, 172, 55, 0.5);
}

.first-screen__add-text {
  height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.first-screen__add-text span {
  color: white;
  font-weight: 600;
  font-size: 35px;
}

@media (max-width: 992px) {
  .first-screen__add-text span {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .first-screen__add-text span {
    font-size: 18px;
  }

  .first-screen__inner {
    height: 100vh;
    display: flex;
    margin-top: 30px;
    padding-top: 20px;
    flex-direction: column;
  }
}

.first-screen__arrow {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.first-screen__arrow-btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: white;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.548);
  background-color: rgba(48, 48, 48, 0.5);
  transition: 0.3s ease;
  animation: animate__arrow 1.7s ease infinite;
}

@media (max-width: 600px) {
  .first-screen__arrow-btn {
    width: 45px;
    height: 45px;
    font-size: 25px;
  }
}

@keyframes animate__arrow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 992px) {
  .top-panel {
    display: none;
  }
}

.top-panel__logo {
  text-align: center;
}

.top-panel__logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100px;
  transform: translateY(-20px);
}

.top-panel__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  align-items: center;
  list-style-type: none;
  font-size: 16px;
}

@media (max-width: 1300px) {
  .top-panel__nav {
    font-size: 14.5px;
  }
}

.top-panel__nav-link {
  color: rgb(194, 194, 194);
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}

.top-panel__nav-link:hover {
  color: white;
}

.top-panel__tel {
  color: white;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.portfolio {
  background-color: rgb(247, 247, 247);
  /* .portfolio__btn-prev, .portfolio__btn-next {
    background: rgb(140, 140, 140);
  } */
}

.portfolio__inner {
  padding: 40px 0;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 3;
  flex-direction: column;
}

@media (max-width: 769px) {
  .portfolio__inner {
    flex-direction: column;
  }
}

.portfolio__text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 769px) {
  .portfolio__text {
    width: 100%;
  }

  .portfolio__slider {
    margin-top: -30px !important;
  }
}

.portfolio__sliders {
  display: flex;
  gap: 40px;
}

@media (max-width: 750px) {
  .portfolio__sliders {
    flex-direction: column;
    width: 100%;
  }
}

.portfolio__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(32% - 7px);
}

@media (max-width: 992px) {
  .portfolio__slider {
    width: 100%;
  }
}

.portfolio__slider-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  aspect-ratio: 16/9;
}

.portfolio__slider-area video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.portfolio__slider-slide {
  min-width: 100%;
  height: 100%;
}

.portfolio__slider-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.portfolio__slider-prev,
.portfolio__slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
}

.portfolio__slider-prev {
  left: 10px;
}

.portfolio__slider-next {
  right: 10px;
}

.portfolio__slider-next:hover,
.portfolio__slider-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.portfolio__slider-dots {
  justify-content: center;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.portfolio__slider-dot {
  width: 12px;
  height: 12px;
  background-color: rgb(163, 255, 110);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.portfolio__slider-dot.active {
  background-color: rgb(13, 172, 55);
}

.info {
  background-color: rgb(247, 247, 247);
}

.info__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  padding: 20px;
}





@media (max-width: 1200px) {
  .info__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .info__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.info__block {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #e7daca96;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  min-height: 60px;
}

.info__block h4 {
  color: rgb(36, 36, 36);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 15px;
  font-size: 20px;
}

@media (max-width: 769px) {
  .info__block h4 {
    font-size: 18px;
  }
}

.info__block p {
  color: rgb(66, 66, 66);
  font-size: 15px;
}

@media (max-width: 769px) {
  .info__block p {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .info__inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    /* Добавляем горизонтальный скролл */
    scroll-snap-type: x mandatory;
    /* Притягивание к элементам */
    -webkit-overflow-scrolling: touch;
    /* Плавный скролл на iOS */
    padding-bottom: 10px;
  }



  .info__block {
    flex: 0 0 100%;
    /* Каждый блок занимает 80% ширины экрана */
    scroll-snap-align: center;
    /* Притягивание блоков к центру */
    min-height: 200px;
    /* Увеличиваем высоту на мобильных */
  }

  .info__block p {
    font-size: 17px;

  }
}

.calc {
  padding: 40px 0;
  background-color: #fff;
}

.calc__inner {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.calc__img {
  min-width: 40%;
  width: 35%;
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1200px) {
  .calc__img {
    display: none;
  }
}

.calc__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}

.calc__img::after {
  content: "";
  min-width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.calc__title {
  color: rgb(36, 36, 36);
  margin-bottom: 30px;
}

.calc__progress-bar {
  width: 100%;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.calc__progress-bar-fill {
  height: 100%;
  width: 0;
  background-color: #beae9a91;
  transition: width 0.3s ease;
}

.calc__step {
  display: none;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  justify-content: flex-start;
}

.calc__step h2 {
  font-size: 30px;
  color: rgb(43, 43, 43);
  font-weight: 200;
}

@media (max-width: 500px) {
  .calc__step h2 {
    text-align: center;
  }

  .calc__step p {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .calc__step h2 {
    font-size: 20px;
  }
}

.calc__step label {
  color: rgb(0, 0, 0);
  padding: 10px;
  width: 100%;
  color: rgb(36, 36, 36);
  font-size: 18px;
  border-radius: 20px;
}

.calc__step p {
  color: rgb(0, 0, 0);
  padding: 20px;
  width: 100%;
  color: rgb(36, 36, 36);
  font-size: 18px;
  border-radius: 20px;
}

.calc__step label img {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 769px) {
  .calc__step label img {
    -o-object-fit: fill;
    object-fit: fill;
  }
}

.calc__step input[type=radio] {
  margin-right: 10px;
}

.calc__input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
  flex-grow: 1;
}

.calc__input-wrapper_row {
  flex-direction: row;
}

@media (max-width: 769px) {
  .calc__input-wrapper_row {
    flex-direction: row;
  }

}

.calc__tel-form .btn-donate {
  border-radius: 50px !important;
}

.calc__btn-finish {
  display: flex;
  gap: 20px;
}

.calc__btns-wrapper {
  display: flex;
  gap: 20px;
}

.calc__btn-next,
.calc__btn-prev {

  height: 50px;
  color: #000;
  font-weight: 500;
  font-family: var(--main-font);
  border-radius: 50px;
  font-size: 18px;
  background-color: #e7daca;
  border: 0;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
}

.calc__btn-next:hover,
.calc__btn-prev:hover {
  background-color: #e7daca;
}

.calc__btn-prev-finish {

  height: 60px;
  color: #000;
  font-weight: 500;
  font-family: var(--main-font);
  border-radius: 50px;
  font-size: 18px;
  background-color: #e7daca;
  border: 0;
  cursor: pointer;
  width: 100%;
  margin-top: 0;
}

.calc__btn-next:hover,
.calc__btn-prev:hover {
  background-color: #e7daca;
}

@media (max-width: 450px) {
  .calc__step label {
    color: rgb(0, 0, 0);
    padding: 00px;
    width: 100%;
    color: rgb(36, 36, 36);
    font-size: 18px;
    border-radius: 20px;
  }

  .calc__step label img {
    -o-object-fit: fill;
    object-fit: fill;
  }

  .calc__btn-next,
  .calc__btn-prev {
    width: 100%;
    margin-top: 0px;
  }

  .calc__step label img {
    width: 100%;
    height: 100px;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.calc__tel-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  background-color: #fff;
  position: relative;
}

.price__inner {
  padding: 60px 0;
  padding-bottom: 0;
}

.price__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price__text span {
  color: #000;
  font-weight: 700;
}

.price__items {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

@media (max-width: 1200px) {
  .price__items {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.price__item {
  border-radius: 20px;
  position: relative;
  background-color: rgb(206, 206, 206);
  transition: 0.3s ease;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(33% - 13.3px);
}

.price__item:hover {
  background-color: rgba(240, 240, 240, 0.377);
  cursor: auto;
}

.price__item_design:hover {
  background-color: #fff;
  cursor: auto;
}

@media (max-width: 1200px) {
  .price__item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 769px) {
  .price__item {
    width: 100%;
    height: auto;
  }
}

.price__item-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price__item-text h5 {
  color: #000;
  font-size: 30px;
}

.price__item-text p {
  color: rgb(37, 37, 37);
  font-size: 17px;
}

.price__item-text ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 30px;
  list-style: none;
}

.price__item-text ul li {
  color: rgb(20, 20, 20);
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

.price__item-text ul li::before {
  content: "✔";
  position: absolute;
  left: -37px;
  top: 10px;
  color: #fff;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  display: flex;
  font-size: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgb(13, 172, 55);
}

.price__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 15px;
}

.price__action h5 {
  color: #000;
  font-size: 25px;
}

.price__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.price__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgb(247, 247, 247);
}

.rooms-number {
  padding: 30px 0;
}

.rooms-number .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .rooms-number .buttons {
    margin-bottom: 10px;
  }
}

.rooms-number .buttons .btn {
  margin-right: 20px;
  margin-bottom: 14px;
  font-size: 20px;
  max-width: calc(50% - 20px);
}

@media (max-width: 991px) {
  .rooms-number .buttons .btn {
    font-size: 15px;
  }
}

.rooms-number .buttons .btn.active {
  color: #bd2327;
  background: #f0bb1d;
}

.rooms-number .buttons .btn:last-child {
  margin-right: 0;
}

.rooms-number .swiper-container .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media (max-width: 767px) {
  .rooms-number .swiper-container .swiper-slide {
    flex-direction: column-reverse;
  }
}

.rooms-number .swiper-container .swiper-slide .image {
  flex: 0 0 39.7905759162%;
  padding: 0 4.1012216405%;
}

@media (max-width: 767px) {
  .rooms-number .swiper-container .swiper-slide .image {
    flex: auto;
    padding: 0;
    max-width: 320px;
    margin: 20px auto 0;
  }
}

.rooms-number .swiper-container .swiper-slide .image img {
  width: 100%;
  height: auto;
  margin-bottom: 38px;
}

.rooms-number .swiper-container .swiper-slide .image .params {
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
}

.rooms-number .swiper-container .swiper-slide .image .params .param {
  font-size: 18px;
  line-height: 23px;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .rooms-number .swiper-container .swiper-slide .image .params .param {
    font-size: 17px;
  }
}

.rooms-number .swiper-container .swiper-slide .image .params .param b {
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .rooms-number .swiper-container .swiper-slide .image .params .param b {
    font-size: 21px;
  }
}

.rooms-number .swiper-container .swiper-slide .image .text-center .btn {
  font-size: 20px;
  width: 240px;
}

@media (max-width: 991px) {
  .rooms-number .swiper-container .swiper-slide .image .text-center .btn {
    font-size: 16px;
  }
}

.rooms-number .swiper-container .swiper-slide .text {
  flex: 0 0 57.7661431065%;
  font-size: 15px;
  line-height: 1.6666666667;
}

@media (max-width: 767px) {
  .rooms-number .swiper-container .swiper-slide .text {
    flex: auto;
  }
}

.rooms-number .swiper-container .swiper-slide .text .name {
  font-size: 26px;
  margin-bottom: 20px;
}

.rooms-number .swiper-container .swiper-slide .text p {
  margin-bottom: 1.6em;
}

.rooms-number .switcher {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .rooms-number .switcher {
    margin-bottom: 20px;
  }
}

.rooms-number .switcher .btn {
  font-size: 20px;
  margin: 0 5px;
}

@media (max-width: 576px) {
  .rooms-number .switcher .btn {
    font-size: 18px;
  }
}

.rooms-number .switcher .btn.active {
  background: #bd2327;
  color: #fff;
}

.rooms-number .columns {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .rooms-number .columns {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.rooms-number .columns .column {
  border-radius: 30px;
  background: #f1f1f1;
  position: relative;
  margin-bottom: 35px;
  flex: 0 0 calc(33.333% - 18.6666666667px);
  max-width: calc(33.333% - 18.6666666667px);
}

@media (max-width: 991px) {
  .rooms-number .columns .column {
    flex-basis: calc(33.333% - 12px);
    max-width: calc(33.333% - 12px);
  }
}

@media (max-width: 767px) {
  .rooms-number .columns .column {
    flex-basis: calc(50% - 9px);
    max-width: calc(50% - 9px);
    margin: 0 4.5px 95px;
  }
}

@media (max-width: 575px) {
  .rooms-number .columns .column {
    flex-basis: 100%;
    max-width: 100%;
    margin: 0 0 135px;
  }
}

.rooms-number .columns .column .title {
  border-radius: 30px 30px 0 0;
  background: #ddc8afd0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 0 16px;
  font-size: 24px;
}

@media (max-width: 991px) {
  .rooms-number .columns .column .title {
    font-size: 20px;
    line-height: 1;
  }
}

@media (max-width: 767px) {
  .rooms-number .columns .column .title {
    font-size: 22px;
  }
}

.rooms-number .columns .column .title .img {
  margin-right: 13px;
  flex-shrink: 0;
  position: relative;
  width: 42px;
  height: 42px;
}

.rooms-number .columns .column .title .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
}

.rooms-number .columns .column img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.rooms-number .columns .column .list {
  padding: 0 26px;
  margin-bottom: 20px;
  overflow: auto;
  scrollbar-width: thin;
  max-height: 450px;
  height: 450px;
  scrollbar-color: #e7daca #f1f1f1;

}



.rooms-number .columns .column .list::-webkit-scrollbar {
  width: 4px;
}

.rooms-number .columns .column .list::-webkit-scrollbar-track {
  background: #000;
}

.rooms-number .columns .column .list::-webkit-scrollbar-thumb {
  background-color: #f1f1f1;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .rooms-number .columns .column .list {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .rooms-number .columns .column .list {
    height: auto;
  }
}

.rooms-number .columns .column .list .head {
  font-weight: 700;
  font-size: 18px;
}

.rooms-number .columns .column .list .item {
  transition: all 0.2s ease;
  padding: 20px 0;
  overflow: hidden;
  font-size: 20px;
  line-height: 22px;
  border-bottom: 1.5px solid #c4c4c4;
  display: flex;
  justify-content: flex-start;
  font-family: "Forum", serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
}

.rooms-number .columns .column .list .item:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: url(../img/list-item.svg) no-repeat center;
  background-size: contain;
  margin-right: 20px;
  margin-top: -3px;
}

@media (max-width: 991px) {
  .rooms-number .columns .column .list .item:before {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    margin-right: 16px;
  }
}

.rooms-number .columns .column .list .item.visible {
  max-height: 200px;
  padding: 20px 0;
  border-bottom: 1.5px solid #c4c4c4;
}

.rooms-number .columns .column .list .item.disabled {
  color: #c4c4c4;
}

.rooms-number .columns .column .list .item.disabled:before {
  background-image: url(//lyapota.pro/wp-content/themes/lyapota/scss/../img/list-item-disabled.svg);
}

.rooms-number .columns .column .text {
  padding: 0 26px;
  font-size: 18px;
  margin-bottom: 20px;

}

.rooms-number .columns .column .text b {

  font-size: 16px;

}

.rooms-number .columns .column .price {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  height: 75px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rooms-number .columns .column .order {
  position: absolute;
  bottom: -70px;
  left: 0;
  text-align: center;
  width: 100%;
}

.rooms-number .columns .column .unwrap {
  display: none;
}

@media (max-width: 575px) {
  .rooms-number .columns .column .unwrap {
    display: block;
    text-align: center;
    font-size: 24px;
    position: absolute;
    bottom: -115px;
    left: 0;
    width: 100%;
  }
}

.rooms-number .columns.columns--3 .column {
  flex: 0 0 calc(33.333% - 18.6666666667px);
  max-width: calc(33.333% - 18.6666666667px);
}

.rooms-number .columns.columns--3 .column:nth-child(4) {
  display: none;
}

.rooms-number .columns.columns--4 .column {
  flex: 0 0 calc(33.333% - 18.6666666667px);
  max-width: calc(33.333% - 18.6666666667px);
}

@media (max-width: 1200px) {
  .rooms-number .columns.columns--4 .title {
    font-size: 20px;
  }

  .rooms-number .columns.columns--4 .title .img {
    width: 32px;
    height: 32px;
  }

  .rooms-number .columns.columns--4 .list .item:before {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
}

@media (max-width: 992px) {
  .rooms-number .columns.columns--4 {
    flex-wrap: wrap;
  }

  .rooms-number .columns.columns--4 .column {
    flex-basis: calc(50% - 12px);
    max-width: calc(50% - 12px);
    margin: 0 6px 95px;
  }

  .rooms-number .columns.columns--4 .column .list {
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  .rooms-number .columns.columns--4 .column {
    flex-basis: 100%;
    max-width: 80%;
    margin: 0 50px -20px;
    max-height: max-content;
  }

  .columns-price .column {
    flex-basis: 100%;
    max-width: 95% !important;
    margin: 0 50px -20px;
    max-height: max-content;
  }

  .columns {
    overflow-y: hidden;
    max-height: max-content;
  }
}

.rooms-number.with-switcher .columns {
  display: none;
}

.rooms-number.with-switcher .columns.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.rooms-number.with-switcher .grid {
  display: none;
}

.rooms-number.with-switcher .grid.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

.rooms-variants {
  padding: 30px 0;
}

.rooms-variants .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 23px;
  grid-row-gap: 25px;
}

@media (max-width: 991px) {
  .rooms-variants .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .rooms-variants .grid {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 15px;
  }
}

.rooms-variants .grid .item {
  background: #efefef;
  border-radius: 16px;
  transition: all 0.2s ease;
  text-decoration: none;
  padding-bottom: 29px;
}

.rooms-variants .grid .item:hover {
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
}

.rooms-variants .grid .item img {
  display: block;
  width: 94%;
  margin: 0 3%;
  height: 236px;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: center;
  object-position: center;
}

.rooms-variants .grid .item span {
  margin-top: -7px;
  font-size: 20px;
  line-height: 1;
  display: block;
  text-align: center;
}

@media (max-width: 575px) {
  .rooms-variants .grid .item span {
    font-size: 16px;
  }
}

.rooms-variants .grid .item.start-item {
  padding: 27px 22px 17px;
}

@media (max-width: 991px) {
  .rooms-variants .grid .item.start-item {
    grid-column: span 2;
  }
}

.rooms-variants .grid .item.start-item .title {
  font-size: 26px;
  line-height: 0.9230769231;
  margin-bottom: 24px;
}

.rooms-variants .grid .item.start-item .text {
  font-size: 15px;
  line-height: 1.6666666667;
  margin-bottom: 34px;
}

.rooms-variants .grid .item.start-item .btn {
  font-size: 20px;
  width: 100%;
  text-align: center;
}


.rooms-number .switcher-arrows {
  display: none;


}

@media (max-width: 996px) {
  .rooms-number .switcher-arrows {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: absolute;
    top: 50%;
    width: 90%;
    transform: translateY(-50%);
    padding: 0 0px;
    z-index: 111;

  }

  .rooms-number .switcher-arrows button {
    background-color: transparent;
    color: black;
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
  }

  .columns {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    /* Горизонтальный скролл */
    scroll-snap-type: x mandatory;
    /* Притягивание к элементам */
    -webkit-overflow-scrolling: touch;
    /* Плавный скролл на iOS */
    gap: 10px;
    padding-bottom: 10px;
    justify-content: space-between !important;
  }

  .column {
    flex: 0 0 80%;
    /* Каждый блок занимает 80% ширины экрана */
    scroll-snap-align: center;
    /* Притягивание блоков к центру */
    width: auto;
    /* Убираем фиксированную ширину */
  }
}


.faq {
  background-color: rgb(255, 255, 255);
}

.faq__inner {
  padding: 40px 0;
}

.faq__text {
  text-align: center;
  margin-bottom: 40px;
}

.faq__text h1 {
  margin-bottom: 30px;
}

.faq__text a {
  text-decoration: none;
  text-align: center;
  color: #9c8e7c;
  font-weight: 600;
}

.faq__items {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.faq__item {
  border-bottom: 1px solid rgb(146, 146, 146);
  width: calc(50% - 10px);
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 600px) {
  .faq__item {
    width: 100%;
  }
}

.faq__question {
  width: 100%;
  height: 100px;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  color: rgb(36, 36, 36);
  font-size: 20px;
}

@media (max-width: 769px) {
  .faq__question {
    font-size: 15px;
    height: 80px;
  }
}

.faq__answer {
  padding: 15px;
  display: none;
  color: rgb(82, 82, 82);
  min-height: 80px;
  font-family: "Forum", serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
}

@media (max-width: 769px) {
  .faq__answer {
    font-size: 12px;
    min-height: 50px;
  }
}

.faq__icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq__icon i {
  color: #b8966d;
  font-size: 30px;
}

.team {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.team__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 769px) {
  .team__inner {
    flex-direction: column;
  }
}

.team__text {
  width: calc(50% - 10px);
}

@media (max-width: 769px) {
  .team__text {
    width: 80%;
    text-align: center;
  }
}

.team__text p {
  margin-top: 20px;
}

.team__slider {
  width: calc(50% - 10px);
}

@media (max-width: 769px) {
  .team__slider {
    width: 100%;
  }
}

.team__item {
  text-align: center;
}

.team__img {
  width: 100%;
  height: 300px;
  -o-object-fit: s;
  object-fit: contain;
}

.portfolio__sliders .team__img {
  width: 100%;
  height: 300px;
  -o-object-fit: fill;
  object-fit: fill;
}

@media (max-width: 1090px) {
  .portfolio__sliders .team__img {
    width: 100%;
    height: auto;
    -o-object-fit: fill;
    object-fit: fill;
  }
}

.team__name {
  font-size: 23px;
  font-weight: 600;
  margin-top: 15px;
}

@media (max-width: 769px) {
  .team__name {
    font-size: 18px;
    margin-top: 10px;
  }
}

.team__status {
  font-size: 18px;
  margin-top: 10px;
  font-style: italic;
}

@media (max-width: 769px) {
  .team__status {
    font-size: 15px;
    margin-top: 5px;
  }
}

.team__pagination {
  position: relative;
  margin-top: 10px;
}

.team__pagination .swiper-pagination-bullet-active {
  background: #e7daca;
}

.team__btn-next,
.team__btn-prev {
  color: #e7daca;
}

.reviews {
  padding: 50px 0 0 0;
  background-color: #f9f9f9;
}

.process {
  background: #e2d7c8;
}

.process__inner {
  padding: 40px 0;
}

.process__text {
  max-width: 80%;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .process__text {
    max-width: none;
  }
}

.process__items {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.process__item {
  background: #fff;
  border-radius: 20px;
  width: calc(33% - 10px);
  padding: 40px 10px;
  text-align: center;
}

@media (max-width: 600px) {
  .process__item {
    width: calc(50% - 7.5px);
  }
}

@media (max-width: 600px) {
  .process__item {
    width: 100%;
  }
}

.process__img {
  display: inline-block;
  background: #e2d7c8;
  padding: 10px;
  border-radius: 50%;
}

.process__img img {
  width: 50px;
  height: 50px;
}

.process__description {
  margin-top: 20px;
}

.process__description h5 {
  font-size: 20px;
}

@media (max-width: 992px) {
  .process__description h5 {
    font-size: 15px;
  }
}

.process__description p {
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .process__description p {
    font-size: 10px;
  }
}

@media (max-width: 600px) {

  .process__items {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .process__item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    width: auto;
  }
}

.slider-arrow-process {
  display: none;
}

/* Убираем полосы прокрутки */
.info__inner::-webkit-scrollbar {
  display: none;
}

.contact {
  background-color: #fff;
}

.contact__inner {
  padding: 40px 0 60px 0;
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 769px) {
  .contact__inner {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .contact__inner {
    gap: 20px;
  }

  /* Стрелки */
  .slider-arrow-process {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: rgba(0, 0, 0, 0.5);
    border: none;
    display: block;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }

  .slider-arrow-process.left {
    left: 10px;
  }

  .slider-arrow-process.right {
    right: 10px;
  }
}

.contact__text {
  width: 100%;

}

@media (max-width: 769px) {
  .contact__text {
    width: 100%;
  }
}

.contact__text p {
  margin-top: 40px;

  font-size: calc(10px + 1vw);

}

.contact__text .section-title {
  text-align: center;
}

.contact__inner .section-text {
  font-size: 22px;
  text-align: center;
}

.contactForm_contact_1 .contact__form-text {
  text-align: center !important;

}

.contactForm_contact_1 .contact__form-text span {
  font-size: 25px;

}

.contact__form {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-content: center;
  flex-direction: row;
}

.contactForm_contact_1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contactForm_contact {
  width: 100%;
}

@media (max-width: 1070px) {
  .contact__form {
    width: 100%;
    flex-direction: column;
  }

  .contactForm_contact_1 .contact__form-text span {
    font-size: 25px;
    display: none;
  }

  .contactForm_contact_1 .contact__form-text {
    text-align: center !important;
  }

  .contact__form-contacts {

    align-self: center;
  }

  .contact__inner .section-text {
    font-size: 22px;
    text-align: center !important;
  }
}

@media (max-width: 996px) {
  .contact__form {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact__form {
    width: 100%;
  }
}

.contact__form-text {
  color: rgb(17, 17, 17);
  font-size: 20px;
  text-transform: uppercase;
}

.contact .contact__form-text {
  text-align: center;
}

.contact__input {
  width: 100%;
  height: 70px;
  border: 1px solid rgb(161, 161, 161);
  background-color: rgb(228, 228, 228);
  color: #000;
  padding-left: 50px;
  font-size: 15px;
  border-radius: 20px;

}

@media (max-width: 600px) {
  .contact__input {
    height: 50px;
  }
}

.contact__social-links {
  justify-content: center;
}

.contact__tels {
  width: 100%;
  text-align: center;
  align-items: center;
}

.footer {
  background-color: rgb(236, 236, 236);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0 20px 0;
}

.footer__top {
  display: flex;
  gap: 40px;
}

@media (max-width: 769px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.footer__map {
  width: 40%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 769px) {
  .footer__map {
    width: 100%;
  }
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer__links {
  width: 60%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 769px) {
  .footer__links {
    width: 100%;
  }
}

.footer__navs {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 100%;
}

@media (max-width: 992px) {
  .footer__navs {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
}

.footer__nav span {
  color: rgb(15, 15, 15);
  font-size: 25px;
  line-height: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer__nav a {
  color: rgb(114, 114, 114);
  line-height: 20px;
  font-size: 17px;
  text-decoration: none;
}

.footer__nav a:hover {
  color: rgb(0, 0, 0);
}

.footer__social-nav {
  color: rgb(15, 15, 15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 20px;
}

@media (max-width: 992px) {
  .footer__social-nav {
    grid-column: span 2;
  }
}

.footer__social-links {
  display: flex;
  gap: 20px;
  flex-direction: row;
  width: 100%;
  align-self: center;
}

.footer__social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s ease;
  opacity: 0.6;

}

.footer__social-link:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: blur(0);
}

.footer__social-link img {
  width: 100%;
  height: 100%;
}

.footer__call-text {
  color: rgb(15, 15, 15);
  font-size: 20px;
  margin-top: 20px;
}

.footer__tel-links {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.footer__tel-links a {
  color: rgb(15, 15, 15);
  font-size: 20px;
  text-decoration: none;
}

.footer__tel-links a:hover {
  color: rgb(0, 140, 255);
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 100px;
  padding-top: 10px;
  gap: 20px;
  border-top: 1px solid rgb(121, 121, 121);
}

@media (max-width: 600px) {
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  display: flex;
  justify-content: center;
}

.footer__logo img {
  width: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 600px) {
  .footer__logo {
    width: 100px;
  }

  .footer__logo img {
    width: 100%;
  }
}

.footer__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(15, 15, 15);
  font-size: 15px;
  text-align: center;
}

.footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(15, 15, 15);
  font-size: 15px;
  text-align: center;
}

.call-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: rgb(63, 63, 63);
  border-radius: 50%;
  background-color: #e7daca;
  transition: 0.3s ease, opacity 0.3s, visibility 0.3s;
  box-shadow: 1px 1px 15px 4px rgba(0, 0, 0, 0.5);
}

.call-btn:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}


.modal__content_icon {
  display: flex;
  width: 64%;
  align-self: center;

}

@media (max-width: 609px) {
  .modal__content_icon {
    width: 100%;

  }
}

.modal__content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 50%;
  position: relative;
}

@media (max-width: 769px) {
  .modal__content {
    width: 75%;
  }
}

@media (max-width: 600px) {
  .modal__content {
    width: 100%;
  }
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 30px;
}

/*# sourceMappingURL=style.css.map */